home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / newdlg12.zip / PATCH.CMD < prev    next >
OS/2 REXX Batch file  |  1996-10-14  |  495b  |  26 lines

  1. @echo off
  2. REM *******************************
  3. REM NewDlg v1.2 Merlin Patch script
  4. REM     (C)opyright Tomas Ögren
  5. REM         stric@ts.umu.se
  6. REM *******************************
  7.  
  8. if .%1.==.. goto NoParams
  9. if not exist %1 goto FileNotFound
  10.  
  11. call resmgr -a %1 256.4
  12. echo Patch applied! (Successfully?)
  13. goto TheEnd
  14.  
  15. :FileNotFound
  16. echo Error: %1 not found!
  17. goto Usage
  18.  
  19. :Usage
  20. echo.
  21. echo Usage: PATCH.CMD dll_filename
  22. echo.
  23. echo See file Readme for more information
  24.  
  25. :TheEnd
  26.